home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Wayzata's Best of Shareware PC/Windows 1
/
Wayzata's Best of Shareware for PC-Windows - Release 1 - Wayzata Technology (1993).iso
/
mac
/
DOS
/
EDITORS
/
BE300
/
HEXKEY.CHS
< prev
next >
Wrap
Text File
|
1992-10-18
|
319b
|
11 lines
/* this routine functions the same as HEXKEY.COM
/* it displays the hex and decimal value of a keystroke
{
int i;
msg("Press any key ... (Escape exits)");
i=getkey();
while((i%256)!=27){
msg("Value is %04lx [%06ld] ... Press another key ... (Escape exits)",i,i)
i=getkey();
}
}